(UNBLOCK_INPUT): Fix typo.
authorRichard M. Stallman <rms@gnu.org>
Wed, 7 Apr 1993 20:25:14 +0000 (20:25 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 7 Apr 1993 20:25:14 +0000 (20:25 +0000)
src/blockinput.h

index f02cb5ce85e442a5b9b56bdb29dee3cde8adc850..0571a64810743632ab09c908341ff111e946e06a 100644 (file)
@@ -59,7 +59,7 @@ extern int interrupt_input_pending;
 #define UNBLOCK_INPUT \
   (interrupt_input_blocked--, \
    (interrupt_input_blocked < 0 ? (abort (), 0) : 0), \
-   ((interrupt_input_blocked == 0 && interupt_input_pending != 0) \
+   ((interrupt_input_blocked == 0 && interrupt_input_pending != 0) \
     ? (kill (0, SIGIO), 0) \
     : 0))
 #else